.battery-container {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.battery {
    box-sizing: content-box;
    height: 7.8em;
    width: 17.5em;
    border: 0.6em solid black;
    margin: auto;
    border-radius: 0.6em;
    position: relative;
    display: grid;
    place-items: center;
}

.battery:before {
    position: absolute;
    content: "";
    height: 5em;
    width: 1.1em;
    background-color: black;
    margin: auto;
    top: 0;
    bottom: 0;
    right: -1.6em;
    border-radius: 0 0.3em 0.3em 0;
}

.battery-small {
    box-sizing: content-box;
    height: 1em;
    width: 5em;
    border: 0.2em solid black;
    margin: auto;
    border-radius: 0.2em;
    position: relative;
    display: grid;
    place-items: center;
}

.battery-small:before {
    position: absolute;
    content: "";
    height: 1em;
    width: 0.5em;
    background-color: black;
    margin: auto;
    top: 0;
    bottom: 0;
    right: -0.6em;
    border-radius: 0 0.3em 0.3em 0;
}

.battery-chain {
    box-sizing: content-box;
    height: 5em;
    width: 10em;
    border: 0.6em solid black;
    border-radius: 0.6em;
    position: relative;
    display: grid;
    place-items: center;
}

.battery-chain-right {
    content: "";
    height: 4em;
    width: 0.7em;
    background-color: black;
    margin: auto 0.3em auto 0;
    border-radius: 0 0.3em 0.3em 0;
}

.charge {
    /* position: absolute;
    height: 6.5em;
    width: 16.25em;
    background-color: lightgreen;
    top: 0.6em;
    left: 0.6em; */
    position: absolute;
    height: 100%;
    width: 16.25em;
    background-color: lightgreen;
    /* top: 0.6em; */
    left: 0;
}

.charge-level {
    position: absolute;
    /* font-size: 3em; */
    font-weight: 500;
}
